        /* General Styling */
        body {
            font-family: Arial, sans-serif; /* Clean sans-serif */
            margin: 0;
            padding: 0;
            background-color: #edebe2; /* Light cream */
            color: #2b2b2b; /* Dark grey */
        }

/* Banner Image Section */
.banner {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background-color: #edebe2; /* Light cream as fallback */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image scales properly */
}

.banner-link{
    display: block; /* Makes the link cover the full width */
    width: 100%;
    height: 100%;
	background-image: url('./images/withjo.jpg'); /* Path to your image */
	background-size: cover;
    background-position: center;
	text-decoration: none; /* Remove underline */
}

/* New background div */
.banner-background {
    position: absolute;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background-image: url('./images/banner1.jpg'); /* Path to your banner image */
    background-size: 100% auto;
	    background-repeat: no-repeat; /* Prevent tiling */
    background-position: center 55%;
    z-index: 0; /* Keep it behind other elements */
}
@media (max-width: 768px) {
    .banner-background {
        background-image: url('./images/withjo-mobile.jpg'); /* Mobile image */
        height: 400px; /* Optional: adjust height for mobile */
        background-size: 100% auto ; /* Maintain original dimensions */
        background-position: center center; /* Center image both vertically and horizontally */
        background-repeat: no-repeat; /* Prevent tiling */
    }
}

        /* Main Content */
        .main-content {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .main-content h2 {
            font-size: 2.5em;
			margin-top:50px;
            margin-bottom: 20px;
            font-family: Georgia, serif; /* Header font */
        }

        .main-content p {
            font-size: 1.1em;
            color: #666;
        }

/* Profile Image Container */
.profile-image-container {
    position: absolute;
    top: 220px; /* Adjust to set the overlap height */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Ensure it sits above the banner and content */
    width: 200px; /* Adjust size as needed */
    height: 200px;
    border-radius: 50%; /* Make the image circular */
    border: 5px solid #edebe2; /* Optional: Add border to match theme */
    background-image: url('./images/profile2.jpg'); /* Path to your image */
    background-size: cover;
    background-position: 110% 25%;
    background-repeat: no-repeat;

}

/* Profile Image */
.profile-image {
    width: 200px; /* Adjust size as needed */
    height: 200px;
    border-radius: 50%; /* Make the image circular */
    border: 5px solid #edebe2; /* Optional: Add border to match theme */
    object-fit: cover; /* Ensure the image covers the circle */
}



        /* Services Section */
.services {
    display: flex;
    justify-content: space-evenly; /* Makes the boxes evenly spaced */
    margin-top: 50px;

}

        .service-item {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            flex: 1;
            margin: 0 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            text-decoration: none;
            color: inherit;
			flex-grow:1;
        }

        .service-item:hover {
            transform: scale(1.05);
        }

.service-item img {
    width: 100%;
    height: 450px; /* Pick a height that works well for your layout */
    object-fit: cover; /* Crops the image while keeping aspect ratio */
    border-radius: 10px;
    margin-bottom: 5px;
}

        .service-item h3 {
            font-family: Georgia, serif;
            font-size: 1.8em;
        }

        .service-item p {
            font-size: 1em;
            color: #666;
        }
		
		.single-service-container {
    display: flex;
    justify-content: space-evenly; /* Makes the container appear like 3 services */
}

.single-service-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 30%; /* Width stays consistent */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.single-service-item img {
    max-width: 100%; /* Ensures the image fits within the container */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Centers the image properly within the container */
    margin: 0 auto; /* Optional: centers the image horizontally */
}
		
.services.two-boxes {
    justify-content: center; /* Center the boxes */
    gap: 20px; /* Control the spacing between the two boxes */
}	
	
/* For the page with only two service boxes */
.services.two-boxes .service-item {
    flex: 0 0 40%; /* Adjust the width percentage */
    max-width: 350px; /* Optional: set a maximum width */
}	

/* Booking Section */
.booking-section {
    text-align: center;
    margin-top: 40px;
}

.booking-text {
    font-size: 1.4em;
    color: #2b2b2b;
    margin-bottom: 20px;
}

/* Facebook Blue */
.facebook-box {
    background-color: #1877F2; /* Facebook's official blue */
    color: #fff;
}

/* Instagram Gradient */
.instagram-box {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* Instagram gradient */
    color: #fff;
}

.whatsapp-box {
    background-color: #25D366; /* WhatsApp's official green */
    color: #fff;
}

/* Booking Options */
.booking-options {
    display: flex;
    justify-content: center; /* Centers the boxes */
    gap: 40px; /* Adds space between the two boxes */
}

.booking-item {
    border-radius: 10px;
    padding: 20px;
    width: 20%; /* This controls button width */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px; /* Adjust height to fit content properly */
}

       	.booking-item:hover {
            transform: scale(1.05);
        }

/* Ensures the anchor tag behaves like a block without altering the button style */
.booking-link {
    text-decoration: none; /* Removes underline from links */
    display: inline-block; /* Makes the link behave like a block element without affecting size */
}


/* Google Reviews Section */
.reviews {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

/* Review Box */
.review-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 0 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: visible; /* Ensures the star can overflow */
    width: 30%; /* Fixed width for all review boxes */
    min-height: 400px; /* Minimum height to ensure consistency */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Aligns the content vertically */
	
}



/* Star Image Styling */
.review-item img.star {
    width: 200px; /* Adjust size */
    position: absolute;
    top: -70px; /* Moves the image higher */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5; /* Keeps the stars in front */
}

/* Reviewer Name Styling */
.reviewer-name {
    margin-top: 5px; /* Reduced margin */
    font-size: 1.1em;
    font-weight: bold;
    color: #2b2b2b;
}


/* Google Logo Styling */
.google-logo {
    margin: 10px auto;
    width: 100px;
    display: block;
}

.reviewer-info {
    justify-content: center;
    gap: 5px; /* Adjust space between name and date */
    flex-wrap: wrap;
    font-size: 1.1em;
    font-weight: bold;
    color: #2b2b2b;
    margin-bottom: 0; /* Remove extra bottom margin */
}

.reviewer-date {
    font-size: 0.9em;
    color: #777;
    margin: 0;
}

.reviewer-name, .reviewer-date {
    display: block; /* Forces each to be on its own line */
    margin: 5px 0; /* Optional: add spacing between lines */
}

        /* Social Media Links */
        .social-media {
            display: flex;
            justify-content: center;
            margin-top: 30px;
			margin-bottom: 30px;
        }

        .social-media img {
            width: 40px;
            margin: 0 15px;
        }

        /* Footer */
        footer {
            background-color: #2b2b2b; /* Dark grey */
            color: #fff;
            padding: 30px 0;
            text-align: center;
        }

        footer p {
            font-size: 0.9em;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .services, .reviews {
                flex-direction: column;
                align-items: center;
            }

            .service-item, .review-item {
                width: 90%;
                margin-bottom: 20px;
            }
        }
		
/* Navbar */
.navbar {
    background-color: #3c3c3c; /* Dark grey */
    color: #fff;
    padding: 10px 20px;
    position: fixed;
    z-index: 100; /* Ensure it's above other elements */
}

/* Menu icon for the hamburger */
.menu-icon {
    font-size: 24px;
    cursor: pointer;
}

/* Navbar */
.navbar {
    background-color: #3c3c3c; /* Dark grey */
    color: #fff;
    padding: 10px 20px;
    position: relative;
    z-index: 9; /* Bring navbar to the top */
}

/* Menu icon */
.menu-icon {
    font-size: 24px;
    cursor: pointer;
}

/* Hide dropdown initially */
.nav-links {
    display: none;
    flex-direction: column;
    list-style: none;
    background-color: #6e6e6e ;
    padding: 10px 0;
    position: absolute;
    top: 100%; /* Positions right below the navbar */
    left: 0;
    width: 100%;
}

.nav-links.active {
    display: flex; /* Show when active */
}

.nav-links li {
    padding: 10px 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.spacing-adjust {
    margin-top: 80px;
	margin-bottom: 20px; /* Add space only to this heading */
}

.service-item h3 {
    min-height: 2em; /* Adjust the height as needed */
}


.banner-text {
    position: absolute;
    top: 12%; 
    left: 50%; 
    transform: translate(-50%, -50%);
	
    text-align: center;
    z-index: 20; 
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	white-space: nowrap; /* Prevents wrapping */
}

.banner-text .main-title::before {
    content: "Tarot and Tea"; /* Centralize your text here */
    font-size: 6em; /* Matches your original main-title font size */
    font-family: Georgia, serif; /* Matches the original styling */
    display: block; /* Ensure proper layout */
}

.banner-text .sub-title::before {
    content: "WITH JO"; /* Centralize your text here */
    font-size: 2em; /* Matches your original sub-title font size */
    font-family: Arial, sans-serif; /* Matches the original styling */

}

@media (max-width: 768px) {
    .main-title {
        font-size: 1em;
    }
    .sub-title {
        font-size: 0.75em;
    }
	    .banner-text {
        font-size: 3em;
        top: 40%; /* Adjusts vertical centering */
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1em;
    }
    .sub-title {
        font-size: 0.75em;
    }
	    .banner-text {
        font-size: 2em;
        top: 15%; /* Further adjustment for balance */
    }
}
@media (max-width: 768px) {
    .single-service-item {
        width: 100%; /* Makes it as wide as the container */
        max-width: 100%; /* Ensures it doesn't shrink on wider screens */
        margin: 10px auto;
    }
        .booking-options {
        display: flex; /* Ensure items are in a row */
        flex-wrap: nowrap; /* Prevent wrapping to the next line */
        justify-content: space-between; /* Space out items evenly */
        gap: 10px; /* Small gap between items */
        padding: 0 10px; /* Add padding to prevent touching edges */
    }

    .booking-item {
        flex: 1; /* Allow each item to grow/shrink equally */
        max-width: 30%; /* Limit the width of each button to fit on one line */
        text-align: center;
        box-sizing: border-box; /* Include padding and borders in width */
		        font-size: 0.9em; /* Reduce text size */
    }
}

.footer-policies {
    margin-top: 10px;
    text-align: center;
}

.footer-policy-link {
    color: #fff; /* Adjust color as needed */
    text-decoration: none;
    margin: 0 5px;
}

.footer-policy-link:hover {
    text-decoration: underline;
}

.google-review-box {
    display: inline-block;
    padding: 15px 20px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
    border-radius: 8px;
    transition: background 0.3s ease;
}

